public class Bottles { public static void main(String arg[]) { int bottles; while ( bottles > 0 ) { System.out.print( bottles + " Bottles of beer on the wall." + " Take one down, pass it around!\n" ); bottles = bottles - 1; } // while System.out.println( "No more bottles of beer on the wall" + " Go to the store, buy some more!" ); } // main() } // class Bottles